home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Explorer Options 4.xpl < prev    next >
Text File  |  2001-07-21  |  2KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Explorer\Settings"
  5. "NAME"="Explorer Double Pane Display"
  6. "VERSION"="2.06"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Always use double-pane Explorer style"
  9. "DESCRIPTION 1"="This option causes Windows Explorer to open with a double-pane view rather than the single-pane by default."
  10. "DESCRIPTION 2"="IMPORTANT! If you activate this option and later de-activate it again, it can happen that the right pane (File View) of Explorer disappears. This is a bug from Explorer, the right pane is still there but only 0 pixles width."
  11. "DESCRIPTION 3"="To correct this issue, just move your mouse pointer from the right to the left until the size cursor (<->) appears. Then drag left and the right pane will appear again." 
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18. 'does anybody where this stuff comes from!?!?!?!
  19. 'AK: askSam(now) 
  20. sExpPath="HKCR\Folder\Shell\Open\ddeexec\@"
  21. sExpDoub="[ExploreFolder(""%l"", %I, %S)]"
  22. sExpNorm="[ViewFolder(""%l"", %I, %S)]"
  23.  
  24.  
  25. Sub Plugin_Initialize 
  26.  s=RegReadValue(sExpPath)
  27.  if ucase(s)=ucase(sExpDoub) then SetUIElement 1,true
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  b=GetUIElement(1)
  35.  if b=true then
  36.     Call RegWriteValue(sExpPath,sExpDoub,1)
  37.  else
  38.     Call RegWriteValue(sExpPath,sExpNorm,1)
  39.  end if
  40.  
  41.  
  42.  
  43.  Call IndicateSettingChange()
  44. End Sub
  45.  
  46. Sub Plugin_Terminate 
  47. End Sub
  48.